Create an Animated Sliding Button Using MooTools

By  on  
MooTools Sliding Button

Buttons (or links) are usually the elements on our sites that we want to draw a lot of attention to. Unfortunately many times they end up looking the most boring. You don't have to let that happen though! I recently found a Tympanus post which provided a great method for making button have an unexpected pop. Here's a quick tutorial on how to duplicate that look using MooTools.

The HTML





The system works off of one DIV, two As and SPAN elements. Note the IDs and CSS classes for the CSS.

The CSS

.button_wrap{ position:relative; width:225px; height:36px; overflow:hidden; font-weight:bold; font-size:11px; margin:10px; }
.button_aLeft{ width:70px; height:36px; -moz-border-radius:20px; -webkit-border-radius:20px; background-color:#093d6f; color:#fff; top:0px; right:0px; position:absolute; line-height:36px; text-align:left; }
.button_aLeft span{ /* display:none; */ visibility:hidden; padding-left:20px; color:#fff; }
.button_aRight{ width:70px; height:36px; -moz-border-radius:20px; -webkit-border-radius:20px; background-color:#093d6f; color:#fff; top:0px; left:0px; position:absolute; line-height:36px; text-align:right; }
.button_aRight span{ /* display:none; */ visibility:hidden; padding-right:20px; color:#fff; }

.button_bLeft{ width:64px; height:30px; background-color:#fff; -moz-border-radius:20px; -webkit-border-radius:20px; color:#000; position:absolute; top:3px; right:3px; text-transform:uppercase; line-height:30px; text-align:center; cursor:pointer; }
.button_bLeft span{ color:#008ddd; }
.button_bRight{ width:64px; height:30px; background-color:#fff; -moz-border-radius:20px; -webkit-border-radius:20px; color:#000; position:absolute; top:3px; left:3px; text-transform:uppercase; line-height:30px; text-align:center; cursor:pointer; }
.button_bRight span{ color:#008ddd; }

.button_c{ background-color:#008ddd; color:#fff; text-transform:uppercase; }
.button_c span{ color:#093d6f; }

The CSS code above mirrors the original code with the exception that "display:none;" was changed to "visibility:hidden", per the differences in MooTools and jQuery fading methodology. Feel free to modify the basic color/formatting styles in any way you'd like.

The MooTools JavaScript

window.addEvent('domready',function() {
	$$('.slidebttn').each(function(btn) {
		var prev = btn.getPrevious('a').set('tween',{ duration: 200 });
		var span = prev.getElement('span');
		btn.addEvents({
			mouseenter: function(e) { 
				btn.addClass('button_c');
				prev.tween('width',225);
				span.fade('in');
			},
			mouseleave:function(e) {
				btn.removeClass('button_c');
				prev.tween('width',70);
				span.fade('out');
			}
		});
	});
});

The first step is grabbing all button containers and identifying the SPAN and A elements within them. Then we add mouseenter and mouseleave events to the container which do the animation of the primary A/SPAN elements.

Great work by Tympanus. The effect is classy and well executed. Now go and use this on your next project!

Recent Features

  • By
    JavaScript Promise API

    While synchronous code is easier to follow and debug, async is generally better for performance and flexibility. Why "hold up the show" when you can trigger numerous requests at once and then handle them when each is ready?  Promises are becoming a big part of the JavaScript world...

  • By
    Responsive and Infinitely Scalable JS Animations

    Back in late 2012 it was not easy to find open source projects using requestAnimationFrame() - this is the hook that allows Javascript code to synchronize with a web browser's native paint loop. Animations using this method can run at 60 fps and deliver fantastic...

Incredible Demos

  • By
    Image Reflection with jQuery and MooTools

    One subtle detail that can make a big difference on any web design is the use of image reflections. Using them too often can become obnoxious but using reflections on large, "masthead" images is a classy enhancement. Unfortunately creating image reflections within your...

  • By
    Create a Dynamic Table of Contents Using MooTools 1.2

    You've probably noticed that I shy away from writing really long articles. Here are a few reasons why: Most site visitors are coming from Google and just want a straight to the point, bail-me-out ASAP answer to a question. I've noticed that I have a hard time...

Discussion

  1. Very good, Mr Walsh.

  2. I like this, but I think it comes with a very slight usability issue – when I hovered over and the “Use Twitter account” text popped out, I tried a couple of times to move over and click it like it was offering an alternative sign-in method. Could be a teeny bit frustrating for an impatient user thinking they’re just slipping off the button when it shoots back in.

  3. adlib

    this one doesn’t work very well with opera…

  4. derdummkopf

    sorry for this stupid question, i’am a newbe
    but how looks the function if i have only one button
    $$('.slidebttn').each(function(btn) {...

    i think each is then not necessary or?

  5. I like. However, IE not allowing border-radius kinda kills the effect. Looks much better in firefox or chrome.

  6. @derdummkopf: How would you accomplish this without each? The only way I can see of doing so would repeat walks through the DOM to get the previous items.

    @John: It may be something where you don’t show IE users this effect.

  7. Nice little dilly hoper here David.

    @derdummkopf
    you could just take the function from within .each() and name it. then pass it a single mootooled element $("one_element_ID").

    function makeSlideBTN(btn) {
    	var prev = btn.getPrevious('a').set('tween',{ duration: 200 });
    	var span = prev.getElement('span');
    	btn.addEvents({
    		mouseenter: function(e) { 
    			btn.addClass('button_c');
    			prev.tween('width',225);
    			span.fade('in');
    		},
    		mouseleave:function(e) {
    			btn.removeClass('button_c');
    			prev.tween('width',70);
    			span.fade('out');
    		}
    	});
    }
    
    window.addEvent("domready",function(){
         //make an element slide
         makeSlide($("whattever-ID"))
    })
    
    

    Remember to keep the classname or it’ll not have any style

  8. That is a really neat user interface object, I am sure clients will understand what you want from them when buttons start opening and closing for them.

  9. Insane :) Hehe.. have to love it..

    Great for exercise … Soon to be implemented on my secret project :D

  10. Hi,

    Nice work,

    Can u please say what the below line will do in above code.

     var  prev = btn.getPrevious('a').set('tween',{ duration: 200 });  
    

    Specially getPrevious function

  11. ethan

    how can i make it work with master/content pages?

  12. Verry nice and simple! With a little customization it fits perfect on my site! Thanx.

  13. Joe

    How do I add a link to these? I tried but keep failing :(

  14. Joe

    How do I add a link to this button?

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!